fa5b7490b3806952efbbbd5d16392f0cd80137cf,edgegrid-signer-core/src/test/java/com/akamai/testing/edgegrid/core/EdgeGridV1SignerTest.java,EdgeGridV1SignerTest,requestsForHeadersSigning,#,108
Before Change
ImmutableSet.of("Content-Type"),
Request.builder()
.method("GET")
.uriWithQuery(URI.create("http://control.akamai.com/check"))
.headers(ImmutableMultimap.<String, String>builder()
.put("Content-Type", "application/json")
.put("Cache-Control", "no-cache")
.build())
After Change
headerToSign,
Request.builder()
.method("GET")
.uriWithQuery(URI.create("http://control.akamai.com/check"))
.header("Content-Type", "application/json")
.header("Cache-Control", "no-cache")
.build()}
};